home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Visual Database / Visual BASIC 5.0 (Ent. Edition) / Vb5ent Extractor.EXE / VB / SAMPLES / ENTRPRIS / APE / INCLUDE / MODWINER.BAS < prev   
Encoding:
BASIC Source File  |  1996-08-03  |  1.3 KB  |  20 lines

  1. Attribute VB_Name = "modWin32Errors"
  2. Option Explicit
  3. '-------------------------------------------------------------------------
  4. 'This Module provides Windows Error constants
  5. '-------------------------------------------------------------------------
  6.  
  7. Public Const ERR_ACCESS_DENIED As Integer = 5
  8. Public Const RPC_E_CALL_REJECTED = &H80010001
  9. Public Const RPC_E_SERVER_DIED_DNE = &H80010012
  10. Public Const RPC_S_INVALID_RPC_PROTSEQ As Integer = 1704
  11. Public Const RPC_S_PROTSEQ_NOT_SUPPORTED As Integer = 1703
  12. Public Const ERR_CANT_FIND_KEY_IN_REGISTRY = &H80040152     'Occurs when a client app tries to Create an object
  13.                                                             'that was previously created while registered remotely
  14.                                                             'then registered locally
  15. Public Const ERR_CALL_FAILED_DIDNOT_EXECUTE = &H80010012
  16. Public Const ERR_NO_MORE_ENDPOINTS = &H800706D9             'There are no more endpoints available from the endpoint mapper.
  17. Public Const RPC_S_UNKNOWN_AUTHN_TYPE = &H800706CD          'Error occurs when trying to connect using an authentication type
  18.                                                             'not supported by the server
  19. Public Const REGDB_E_IIDNOTREG = &H80040155                 'Interface not registered
  20.